rem CoolInstall_Boot=S:
rem CoolInstall_Install=W:

select disk %CoolInstall_Disk%
clean
convert mbr noerr

rem == 1. System partition ======================
create partition primary size=350 noerr
format quick fs=ntfs label="System" noerr
assign letter="S" noerr
active

rem == 2. Windows partition =====================
create partition primary noerr
format quick fs=ntfs label="Windows" noerr
assign letter="W" noerr

list volume
exit